All answehrs at comments
## Question 1 🤔
Based on the story of Julius Caesar's secret party and the Caesar Cipher, identify potential variables you would need. Please ensure you use appropriate variable naming conventions in JavaScript.
## Question 2 🤔
After identifying the variables from the story, specify their primitive data types in JavaScript. Also, provide these variables with some initial values.
## Question 3 🤔
From the variables you've identified, determine which ones should be declared using `const` and which ones should use `let`.
## Question 4 🤔
Given the variable `shiftValue`, write a piece of code to check if its value is an integer.
The `Number.isInteger()` method determines whether the passed value is an integer. If `shiftValue` is an integer, it will return `true`; otherwise, it will return `false`.
# Fun Fact 🥳
The [Caesar Cipher](https://en.wikipedia.org/wiki/Caesar_cipher) is one of the earliest known and simplest ciphers. It is a type of substitution cipher where each letter in the plaintext is shifted a certain number of places down or up the alphabet.
With some help of AI I've made a small script to transform input text using Ceasar code